HTMLify
index.html
Views: 379 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Dot Connect Four</title> <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lobster|Open+Sans"rel="stylesheet'><link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <nav id="navbar"> <div>Connect Four Dot Linearly and win</div> </nav> <div id="board"></div> <div> <div id="status"></div> </div> <div id="end" class="hidden"> <div id="end-text"></div> </div> <!-- partial --> <script src='https://cdnjs.cloudflare.com/ajax/libs/redux/3.6.0/redux.js'></script><script src="./script.js"></script> </body> </html> |